home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / PanedW.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.6 KB  |  60 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: PanedW.h,v $ $Revision: 1.18 $ $Date: 92/05/14 12:54:19 $ */
  6. /*
  7. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  8. /*
  9. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  10. /*
  11. *  (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY  */
  12. /****************************************************************
  13.  *
  14.  * Vertical Paned Widget (SubClass of CompositeClass)
  15.  *
  16.  ****************************************************************/
  17. #ifndef _XmPanedW_h
  18. #define _XmPanedW_h
  19.  
  20. #include <Xm/Xm.h>
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26. /* Class record constant */
  27. externalref WidgetClass xmPanedWindowWidgetClass;
  28.  
  29. #ifndef XmIsPanedWindow
  30. #define XmIsPanedWindow(w)    XtIsSubclass(w, xmPanedWindowWidgetClass)
  31. #endif /* XmIsPanedWindow */
  32.  
  33. typedef struct _XmPanedWindowClassRec  *XmPanedWindowWidgetClass;
  34. typedef struct _XmPanedWindowRec    *XmPanedWindowWidget;
  35.  
  36.  
  37. /********    Public Function Declarations    ********/
  38. #ifdef _NO_PROTO
  39.  
  40. extern Widget XmCreatePanedWindow() ;
  41.  
  42. #else
  43.  
  44. extern Widget XmCreatePanedWindow( 
  45.                         Widget parent,
  46.                         char *name,
  47.                         ArgList args,
  48.                         Cardinal argCount) ;
  49.  
  50. #endif /* _NO_PROTO */
  51. /********    End Public Function Declarations    ********/
  52.  
  53.  
  54. #ifdef __cplusplus
  55. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  56. #endif
  57.  
  58. #endif /* _XmPanedWindow_h */
  59. /* DON'T ADD ANYTHING AFTER THIS #endif */
  60.